home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / rsxwdk2s.zip / RSXWDK / LIBSRC / SYSEMX / PTRACE.C < prev    next >
C/C++ Source or Header  |  1994-10-17  |  144b  |  9 lines

  1. #include <sys/emx.h>
  2. #include <errno.h>
  3.  
  4. int __ptrace (int request, int pid, int addr, int data)
  5. {
  6.     errno = EINVAL;
  7.     return -1;
  8. }
  9.